home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / FROMUTS / PERL / Perl / Lib / Nsyslog < prev    next >
Text File  |  1990-08-13  |  6KB  |  211 lines

  1. #
  2. # syslog.pl
  3. #
  4. # $Log:    nsyslog.pl,v $
  5. # Revision 3.0.1.1  90/08/09  03:57:17  lwall
  6. # patch19: Initial revision
  7. # Revision 1.2  90/06/11  18:45:30  18:45:30  root ()
  8. # - Changed 'warn' to 'mail|warning' in test call (to give example of
  9. #   facility specification, and because 'warn' didn't work on HP-UX).
  10. # - Fixed typo in &openlog ("ncons" should be "cons").
  11. # - Added (package-global) $maskpri, and &setlogmask.
  12. # - In &syslog:
  13. #   - put argument test ahead of &connect (why waste cycles?),
  14. #   - allowed facility to be specified in &syslog's first arg (temporarily
  15. #     overrides any $facility set in &openlog), just as in syslog(3C),
  16. #   - do a return 0 when bit for $numpri not set in log mask (see syslog(3C)),
  17. #   - changed $whoami code to use getlogin, getpwuid($<) and 'syslog'
  18. #     (in that order) when $ident is null,
  19. #   - made PID logging consistent with syslog(3C) and subject to $lo_pid only,
  20. #   - fixed typo in "print CONS" statement ($<facility should be <$facility).
  21. #   - changed \n to \r in print CONS (\r is useful, $message already has a \n).
  22. # - Changed &xlate to return -1 for an unknown name, instead of croaking.
  23. #
  24. # tom christiansen <tchrist@convex.com>
  25. # modified to use sockets by Larry Wall <lwall@jpl-devvax.jpl.nasa.gov>
  26. # NOTE: openlog now takes three arguments, just like openlog(3)
  27. #
  28. # call syslog() with a string priority and a list of printf() args
  29. # like syslog(3)
  30. #
  31. #  usage: require 'syslog.pl';
  32. #
  33. #  then (put these all in a script to test function)
  34. #        
  35. #
  36. #    do openlog($program,'cons,pid','user');
  37. #    do syslog('info','this is another test');
  38. #    do syslog('mail|warning','this is a better test: %d', time);
  39. #    do closelog();
  40. #    
  41. #    do syslog('debug','this is the last test');
  42. #    do openlog("$program $$",'ndelay','user');
  43. #    do syslog('notice','fooprogram: this is really done');
  44. #
  45. #    $! = 55;
  46. #    do syslog('info','problem was %m'); # %m == $! in syslog(3)
  47.  
  48. package syslog;
  49.  
  50. $host = 'localhost' unless $host;    # set $syslog'host to change
  51.  
  52. require '/usr/local/lib/perl/syslog.ph';
  53.  
  54. $maskpri = &LOG_UPTO(&LOG_DEBUG);
  55.  
  56. sub main'openlog {
  57.     ($ident, $logopt, $facility) = @_;  # package vars
  58.     $lo_pid = $logopt =~ /\bpid\b/;
  59.     $lo_ndelay = $logopt =~ /\bndelay\b/;
  60.     $lo_cons = $logopt =~ /\bcons\b/;
  61.     $lo_nowait = $logopt =~ /\bnowait\b/;
  62.     &connect if $lo_ndelay;
  63.  
  64. sub main'closelog {
  65.     $facility = $ident = '';
  66.     &disconnect;
  67.  
  68. sub main'setlogmask {
  69.     local($oldmask) = $maskpri;
  70.     $maskpri = shift;
  71.     $oldmask;
  72. }
  73.  
  74. sub main'syslog {
  75.     local($priority) = shift;
  76.     local($mask) = shift;
  77.     local($message, $whoami);
  78.     local(@words, $num, $numpri, $numfac, $sum);
  79.     local($facility) = $facility;    # may need to change temporarily.
  80.  
  81.     die "syslog: expected both priority and mask" unless $mask && $priority;
  82.  
  83.     @words = split(/\W+/, $priority, 2);# Allow "level" or "level|facility".
  84.     undef $numpri;
  85.     undef $numfac;
  86.     foreach (@words) {
  87.     $num = &xlate($_);        # Translate word to number.
  88.     if (/^kern$/ || $num < 0) {
  89.         die "syslog: invalid level/facility: $_\n";
  90.     }
  91.     elsif ($num <= &LOG_PRIMASK) {
  92.         die "syslog: too many levels given: $_\n" if defined($numpri);
  93.         $numpri = $num;
  94.         return 0 unless &LOG_MASK($numpri) & $maskpri;
  95.     }
  96.     else {
  97.         die "syslog: too many facilities given: $_\n" if defined($numfac);
  98.         $facility = $_;
  99.         $numfac = $num;
  100.     }
  101.     }
  102.  
  103.     die "syslog: level must be given\n" unless defined($numpri);
  104.  
  105.     if (!defined($numfac)) {    # Facility not specified in this call.
  106.     $facility = 'user' unless $facility;
  107.     $numfac = &xlate($facility);
  108.     }
  109.  
  110.     &connect unless $connected;
  111.  
  112.     $whoami = $ident;
  113.  
  114.     if (!$ident && $mask =~ /^(\S.*):\s?(.*)/) {
  115.     $whoami = $1;
  116.     $mask = $2;
  117.     } 
  118.  
  119.     unless ($whoami) {
  120.     ($whoami = getlogin) ||
  121.         ($whoami = getpwuid($<)) ||
  122.         ($whoami = 'syslog');
  123.     }
  124.  
  125.     $whoami .= "[$$]" if $lo_pid;
  126.  
  127.     $mask =~ s/%m/$!/g;
  128.     $mask .= "\n" unless $mask =~ /\n$/;
  129.     $message = sprintf ($mask, @_);
  130.  
  131.     $sum = $numpri + $numfac;
  132.     unless (send(SYSLOG,"<$sum>$whoami: $message",0)) {
  133.     if ($lo_cons) {
  134.         if ($pid = fork) {
  135.         unless ($lo_nowait) {
  136.             do {$died = wait;} until $died == $pid || $died < 0;
  137.         }
  138.         }
  139.         else {
  140.         open(CONS,">/dev/console");
  141.         print CONS "<$facility.$priority>$whoami: $message\r";
  142.         exit if defined $pid;        # if fork failed, we're parent
  143.         close CONS;
  144.         }
  145.     }
  146.     }
  147. }
  148.  
  149. sub xlate {
  150.     local($name) = @_;
  151.     $name =~ y/a-z/A-Z/;
  152.     $name = "LOG_$name" unless $name =~ /^LOG_/;
  153.     $name = "syslog'$name";
  154.     eval &$name || -1;
  155. }
  156.  
  157. sub connect {
  158.     $pat = 'S n C4 x8';
  159.  
  160.     $af_unix = 1;
  161.     $af_inet = 2;
  162.  
  163.     $stream = 1;
  164.     $datagram = 2;
  165.  
  166.     ($name,$aliases,$proto) = getprotobyname('udp');
  167.     $udp = $proto;
  168.  
  169.     ($name,$aliase,$port,$proto) = getservbyname('syslog','udp');
  170.     $syslog = $port;
  171.  
  172.     if (chop($myname = `hostname`)) {
  173.     ($name,$aliases,$addrtype,$length,@addrs) = gethostbyname($myname);
  174.     die "Can't lookup $myname\n" unless $name;
  175.     @bytes = unpack("C4",$addrs[0]);
  176.     }
  177.     else {
  178.     @bytes = (0,0,0,0);
  179.     }
  180.     $this = pack($pat, $af_inet, 0, @bytes);
  181.  
  182.     if ($host =~ /^\d+\./) {
  183.     @bytes = split(/\./,$host);
  184.     }
  185.     else {
  186.     ($name,$aliases,$addrtype,$length,@addrs) = gethostbyname($host);
  187.     die "Can't lookup $host\n" unless $name;
  188.     @bytes = unpack("C4",$addrs[0]);
  189.     }
  190.     $that = pack($pat,$af_inet,$syslog,@bytes);
  191.  
  192.     socket(SYSLOG,$af_inet,$datagram,$udp) || die "socket: $!\n";
  193.     bind(SYSLOG,$this) || die "bind: $!\n";
  194.     connect(SYSLOG,$that) || die "connect: $!\n";
  195.  
  196.     local($old) = select(SYSLOG); $| = 1; select($old);
  197.     $connected = 1;
  198. }
  199.  
  200. sub disconnect {
  201.     close SYSLOG;
  202.     $connected = 0;
  203. }
  204.  
  205. 1;
  206.  
  207.